Remove excessively spammy debug messages
authorMatthias Clasen <mclasen@redhat.com>
Tue, 13 Oct 2020 19:19:21 +0000 (15:19 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 13 Oct 2020 21:24:06 +0000 (17:24 -0400)
Non need to announce the same things for every context
we create, and the path is not really that interesting.
without knowing what it belongs to. I would suggest to
make it visible in the inspector instead, so you can
look it up for the widgets you are interested in.

gtk/a11y/gtkatspicontext.c
gtk/gtkatcontext.c

index 89612a14eb782c2120117d75546a03290a9eb7ed..b6daaf13f81bc9d6637bc70e1a4db768fe8a8fb0 100644 (file)
@@ -1064,8 +1064,6 @@ gtk_at_spi_context_constructed (GObject *gobject)
         self->context_path[i] = '_';
     }
 
-  GTK_NOTE (A11Y, g_message ("ATSPI context path: %s", self->context_path));
-
   g_free (base_path);
   g_free (uuid);
 
index 121951ab9d10f3a712dc1b814a8f684ffa71b0cf..de9dc79275f9ac33ed3125f0667984b2c116d32c 100644 (file)
@@ -471,7 +471,6 @@ gtk_at_context_create (GtkAccessibleRole  accessible_role,
       if (a11y_backends[i].name == NULL)
         break;
 
-      GTK_NOTE (A11Y, g_message ("Trying %s a11y backend", a11y_backends[i].name));
       if (a11y_backends[i].create_context != NULL)
         {
           res = a11y_backends[i].create_context (accessible_role, accessible, display);